System.Array.LastIndexOf 方法 (T[], T, Int32, Int32)

方法描述

搜索指定的对象,并返回 Array 中到指定索引为止包含指定个元素的这部分元素中最后一个匹配项的索引。

语法定义(C# System.Array.LastIndexOf 方法 (T[], T, Int32, Int32) 的用法)

public static int LastIndexOf(
	T[] array,
	T value,
	int startIndex,
	int count
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
array T[] 要搜索的从零开始的一维 Array。
value T 要在 array 中查找的对象。
startIndex System-Int32 向后搜索的从零开始的起始索引。
count System-Int32 要搜索的部分中的元素数。
返回值 System.Int32 如果在 array 中到 startIndex 为止、包含 count 所指定的元素个数的这部分元素中,找到 value 的匹配项,则为最后一个匹配项的从零开始的索引;否则为 -1。

提示和注释

如果 count 大于 0,则在 Array 中向后搜索,从 startIndex 处开始,到 startIndex - count + 1 处结束。

使用 Object.Equals 方法,将元素与指定的值进行比较。 如果元素类型是非内部(用户定义)类型,则使用该类型的 Equals 实现。

此方法的运算复杂度为 O(n),其中 n 是 count。

System.Array.LastIndexOf 方法 (T[], T, Int32, Int32)例子

最后,使用 LastIndexOf(T[], T, Int32, Int32) 方法重载从索引位置 4 开始在四个项的范围内进行向后搜索(即,搜索位于位置 4、3、2 和 1 处的项);它返回 –1,因为该范围内没有搜索字符串的实例。

using System;

public class Example
{
    public static void Main()
    {
        string[] dinosaurs = { "Tyrannosaurus",
            "Amargasaurus",
            "Mamenchisaurus",
            "Brachiosaurus",
            "Deinonychus",
            "Tyrannosaurus",
            "Compsognathus" };

        Console.WriteLine();
        foreach(string dinosaur in dinosaurs)
        {
            Console.WriteLine(dinosaur);
        }

        Console.WriteLine(
            "\nArray.LastIndexOf(dinosaurs, \"Tyrannosaurus\"): {0}", 
            Array.LastIndexOf(dinosaurs, "Tyrannosaurus"));

        Console.WriteLine(
            "\nArray.LastIndexOf(dinosaurs, \"Tyrannosaurus\", 3): {0}", 
            Array.LastIndexOf(dinosaurs, "Tyrannosaurus", 3));

        Console.WriteLine(
            "\nArray.LastIndexOf(dinosaurs, \"Tyrannosaurus\", 4, 4): {0}", 
            Array.LastIndexOf(dinosaurs, "Tyrannosaurus", 4, 4));
    }
}

/* This code example produces the following output:

Tyrannosaurus
Amargasaurus
Mamenchisaurus
Brachiosaurus
Deinonychus
Tyrannosaurus
Compsognathus

Array.LastIndexOf(dinosaurs, "Tyrannosaurus"): 5

Array.LastIndexOf(dinosaurs, "Tyrannosaurus", 3): 0

Array.LastIndexOf(dinosaurs, "Tyrannosaurus", 4, 4): -1
 */

异常

异常 异常描述
ArgumentNullException array 为 null。
ArgumentOutOfRangeException
  • startIndex 超出了 array 的有效索引范围。
  • count 小于零。
  • startIndex 和 count 指定的不是 array 中的有效部分。

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。